a4558a188d7c2b03b70266e4c2caf15f218237fb,src/main/java/com/keybox/manage/action/UploadAndPushAction.java,UploadAndPushAction,setUpload,#,60

Before Change


    public String setUpload() throws Exception {
        Long userId= AuthUtil.getUserId(servletRequest.getSession());

        if (!Auth.MANAGER.equals(AuthUtil.getUserType(servletRequest.getSession()))) {
            idList = SystemDB.checkSystemPerms(idList, userId);
        }

        SystemStatusDB.setInitialSystemStatus(idList, userId);

After Change


    public String setUpload() throws Exception {
        Long userId= AuthUtil.getUserId(servletRequest.getSession());

        SystemStatusDB.setInitialSystemStatus(idList, userId, AuthUtil.getUserType(servletRequest.getSession()));
        return SUCCESS;

    }